Binary Search Visualization
Binary Search is an efficient algorithm for finding an item from a sorted list of items.
It works by repeatedly dividing the search interval in half until the target value is found or the interval is empty.
(Between 5 and 25 elements. Array is automatically sorted!)